From 2aba4f9a1ddc931269381c6599b04a37f0e73307 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 28 Jul 2007 08:12:44 +0000 Subject: [PATCH] (install-arch-indep): Use "rm -f" for removing DOC, to avoid an error message if there is no DOC there. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 8f4ba68c178..ec93805a0e9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -483,7 +483,7 @@ install-arch-indep: mkdir info (cd ./etc; tar -chf - $${docfile}) \ |(cd $(DESTDIR)${docdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \ (cd $(DESTDIR)$(docdir); chown $${LOGNAME:-$$USERNAME} DOC*; chmod a+r DOC*; \ - if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \ + if test "`echo DOC-*`" != "DOC-*"; then rm -f DOC; fi); \ else true; fi -unset CDPATH; \ if [ -r ./lisp ] \ -- 2.30.2